Show the code
# Many many variables are included in the ACS. The ACS has 1 and 5 year estimates. Use the following code to see what variables are available:
# Set a year of interest
this.year = 2021
# This looks at the 5 year estimates
# You can also do "acs1"
vars <- load_variables(year = 2021,
dataset = "acs5",
cache = TRUE)
# There are 27886 possible variables
dim(vars)[1] 27886 4


